home *** CD-ROM | disk | FTP | other *** search
/ Die Ultimative Software-P…i Collection 1996 & 1997 / Die Ultimative Software-Pakete CD-ROM fur Atari Collection 1996 & 1997.iso / i / internet / software / tuwtcpsr / timer.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-20  |  239 b   |  15 lines

  1. #ifndef INET_TIMER
  2. #define INET_TIMER
  3.  
  4.  
  5. typedef int TIMER;
  6.  
  7. TIMER tm_alloc(void);
  8. int tm_set(u_long, void(*)(TIMER),TIMER);
  9. int tm_stop(TIMER);
  10. int tm_free(TIMER);
  11. int tm_handler(void);
  12.  
  13. #define tm_msec(tm) ((tm)*200)
  14.  
  15. #endif